From 4ddf1bdcbe23d9a29f179f39e9bfa6b2648360d8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 17 Aug 2005 08:05:32 +0000 Subject: [PATCH] * Include software-visible client IP address in Special:Version comment as a proxy debugging aid committing live hack --- RELEASE-NOTES | 3 +++ includes/SpecialVersion.php | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1e743dc8e9..b4e03d40f5 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -23,6 +23,9 @@ Misc work going on..... * Partial support for Basque language (from wikipedia and meta) * (bug 3116) Division by zero on [[Image:Foo.png|123x123px|]] * Fix display of read-only lockfile message +* Update all stats fields on recount.sql +* Include software-visible client IP address in Special:Version comment + as a proxy debugging aid === Caveats === diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index a525d35ef0..9b5e150383 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -60,6 +60,11 @@ or [http://www.gnu.org/copyleft/gpl.html read it online] } } $wgOut->addWikiText( $out ); + + global $wgIP; + $wgOut->addHTML( '\n" ); } function formatExtensionCredits( $name, $author, $url = null, $version = null ) { -- 2.20.1